home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / science / sm32a.zip / LIBRARY / LIM.LI < prev    next >
Text File  |  1993-12-19  |  251b  |  9 lines

  1. #    lim(y, x=x0) gives limit of y when x=x0.
  2. #    e.g. lim(sin(x)/x, x=0) givs 1
  3.  
  4. lim(y_, x_) := subs(lim2(y, left(x)), left(x)=right(x))
  5.  
  6. lim2(a_/b_, x_) := d(a,x)/d(b,x)
  7. lim2(a_*b_, x_) := d(1/a,x)*d(b,x)
  8. lim2(a_^b_, x_) := exp(lim2(b*ln(a), x))
  9.